Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ItemRemoved Event
See Also 
Leadtools Namespace > Generic RasterCollection Class : ItemRemoved Event



Occurs when an item is removed from the collection.

Syntax

Visual Basic (Declaration) 
Public Event ItemRemoved() As EventHandler(Of RasterCollectionEventArgs(Of T))
Visual Basic (Usage)Copy Code
Dim instance As RasterCollection(Of T)
Dim handler As EventHandler(Of RasterCollectionEventArgs(Of T))
 
AddHandler instance.ItemRemoved, handler
C# 
public event EventHandler<RasterCollectionEventArgs<T>> ItemRemoved()
C++/CLI 
public:
event EventHandler<RasterCollectionEventArgs<T>>^ ItemRemoved();

Example

For an example, refer to Generic RasterCollection.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also